home *** CD-ROM | disk | FTP | other *** search
-
- #include "includes.h"
- #include "installergui_data.h"
-
- /********************************************************************
- *
- * DESCRIPTION
- *
- * delete the stored event value from the GUI. the function
- * igui_QuietWaitApp() has to save the type of the event, such that
- * the igui_GetGUIEvent() can read the event from the GUI
- *
- * IN: application - pointer to the private application structure
- * OUT: -
- *
- */
-
- /********************************************************************
- *
- * STATIC
- *
- */
-
- /********************************************************************
- *
- * EXTERN
- *
- */
-
- /********************************************************************
- *
- * PUBLIC
- *
- */
-
- /********************************************************************
- *
- * CODE
- *
- */
-
- void __asm igui_ClearGUIEvent(register __a0 APTR application)
- {
- #ifdef DEBUG
- DEBUG_MAKRO
- #endif
-
- ((struct Application *) application)->app_CurrentGUIEvent = GUIEVENT_NOTHING;
- }
-